home *** CD-ROM | disk | FTP | other *** search
/ Stairway to Heaven / Stairway to Heaven.iso / tengoku / cdrom09.dir / 00078_Script_78 < prev    next >
Text File  |  1995-02-18  |  897b  |  42 lines

  1. on startmovie
  2.   global gpath
  3.   put "off" into gpath
  4.   global gsaifu
  5.   if gsaifu = "off" then
  6.     puppetsprite 10, true
  7.     set the type of sprite 10 = 0
  8.   else
  9.     set the type of sprite 10 = 1
  10.   end if
  11.   global gcard1
  12.   if gcard1 = "off" then
  13.     puppetsprite 11, true
  14.     set the type of sprite 11 = 0
  15.   else
  16.     set the type of sprite 11 = 1
  17.   end if
  18.   global gcard2
  19.   if gcard2 = "off" then
  20.     puppetsprite 12, true
  21.     set the type of sprite 12 = 0
  22.   else
  23.     set the type of sprite 12 = 1
  24.   end if
  25.   global gitem1
  26.   if gitem1 = "off" then
  27.     puppetsprite 13, true
  28.     set the type of sprite 13 = 0
  29.   else
  30.     set the type of sprite 13 = 1
  31.   end if
  32.   global gitem2
  33.   if gitem2 = "off" then
  34.     puppetsprite 14, true
  35.     set the type of sprite 14 = 0
  36.   else
  37.     set the type of sprite 14 = 1
  38.   end if
  39. end startmovie
  40. on stopMovie
  41.   sound fadeOut 1
  42. end